
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Tahoma, Verdana, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #4D545B;
            background-color: #FFFFFF;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background: linear-gradient(to bottom, #E9DEC0, #F5F2EA);
            border-bottom: 2px solid #D4D1C4;
            padding: 20px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #CF2106;
            text-decoration: none;
        }

        nav {
            background-color: #F0F4F9;
            border-top: 1px solid #B3CAE9;
            border-bottom: 1px solid #B3CAE9;
            padding: 15px 0;
        }

        .nav-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            justify-content: center;
            gap: 25px;
        }

        .nav-list li a {
            color: #4D545B;
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
            transition: color 0.3s;
        }

        .nav-list li a:hover {
            color: #CF2106;
            text-decoration: underline;
        }

        main {
            padding: 40px 0;
        }

        h1 {
            font-size: 32px;
            font-weight: bold;
            color: #CF2106;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #EC5727;
        }

        h2 {
            font-size: 24px;
            font-weight: bold;
            color: #4D545B;
            margin: 30px 0 20px;
        }

        h3 {
            font-size: 18px;
            font-weight: bold;
            color: #1E3D8D;
            margin: 25px 0 15px;
        }

        h4 {
            font-size: 16px;
            font-weight: bold;
            color: #4D545B;
            margin: 20px 0 10px;
        }

        article {
            background-color: #FFFFFF;
            padding: 20px;
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .transition-section {
            background-color: #F5F2EA;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #D4D1C4;
            border-radius: 5px;
        }

        .transition-section p {
            margin-bottom: 15px;
        }

        .links-section {
            background-color: #F0F4F9;
            padding: 40px 30px;
            border: 1px solid #B3CAE9;
            border-radius: 5px;
        }

        .links-section h3 {
            color: #CF2106;
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #EC5727;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 30px;
            margin-top: 20px;
        }

        .links-section ul li {
            padding: 8px 0;
            border-bottom: 1px solid #D4D1C4;
        }

        .links-section ul li:before {
            content: "▸";
            color: #EC5727;
            font-weight: bold;
            margin-right: 8px;
        }

        .links-section ul li a {
            color: #4D545B;
            text-decoration: none;
            transition: color 0.3s;
        }

        .links-section ul li a:hover {
            color: #1E3D8D;
            text-decoration: underline;
        }

        footer {
            background: linear-gradient(to top, #E9DEC0, #F5F2EA);
            border-top: 2px solid #D4D1C4;
            padding: 30px 0;
            margin-top: 60px;
            text-align: center;
        }

        footer p {
            color: #4D545B;
            font-size: 12px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 26px;
            }

            h2 {
                font-size: 20px;
            }

            h3 {
                font-size: 16px;
            }

            .nav-list {
                gap: 15px;
            }

            .nav-list li a {
                font-size: 12px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            article {
                padding: 15px;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 22px;
            }

            .logo {
                font-size: 24px;
            }

            .nav-list {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
    